Xbasic

TRACELN Function

Syntax

N TRACELN(A expression)

Arguments

expression

A literal value or Xbasic expression to be evaluated, then displayed in the Trace window.

Description

Print a value in the trace window, value is printed on its own line.

Discussion

The TRACELN() function writes the value of an expression to the Trace window. This is a shortcut for the TRACE.WRITELN()method.

Example

The following example writes "blah" to the Trace window.

traceln("blah")

See Also